home *** CD-ROM | disk | FTP | other *** search
/ Amiga News 95 / Amiga News 95.iso / dpat / dpat64 / injector / errormsg / install / installerrorcom next >
Text File  |  1994-04-21  |  1KB  |  44 lines

  1. echo "Welcome to the ErrorCom installation script.*N"
  2.  
  3. version >NIL: exec.library 37
  4. IF WARN
  5. echo "You need Kickstart 2.04 to use ErrorCom, sorry !"
  6. skip Exit
  7. ENDIF
  8.  
  9. echo "*NDo you want to copy "
  10. echo "ErrorCom V1.0"
  11. echo "into your SYS:Utilities/Commodities directory (this is absolutely"
  12. ask "not required for it to run, but it is a convenient place) ?"
  13.  
  14. IF WARN
  15. echo "*NCopying..." NOLINE
  16. copy /ErrorCom/ErrorCom to SYS:Utilities/Commodities/ErrorCom
  17. echo "Done."
  18. ENDIF
  19.  
  20. echo "*NFor ErrorCom to operate in your language, I must copy"
  21. echo "a catalog file to your system disk for each language supported"
  22. echo "(except for english, which is the builtin language).*N"
  23.  
  24. ask "Copy the french (français) catalog file ?"
  25. IF WARN
  26. echo "*NCopying..." NOLINE
  27. copy /ErrorCom/Catalogs/Français/errorcom.catalog to LOCALE:Catalogs/Français/errorcom.catalog
  28. echo "Done."
  29. ENDIF
  30.  
  31. echo "*NDo you want to copy "
  32. echo "WhatError V1.0"
  33. ask "into your C: directory ?"
  34. IF WARN
  35. echo "*NCopying..." NOLINE
  36. copy /WhatError/WhatError to C:
  37. echo "Done."
  38. ENDIF
  39.  
  40. echo "*NAll done."
  41.  
  42. Lab Exit
  43. Quit
  44.